import java.util.*;
public class removeListTest {
public static void main(String args[]){
removeList filter = new removeList();
ArrayList<Object> x = new ArrayList<Object>();
ArrayList<Object> xx = new ArrayList<Object>();
filter.filter(x, xx);
}
}